home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
machserver
/
1.098
/
Include
/
fsioLock.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-10-19
|
2KB
|
60 lines
/*
* fsioLock.h --
*
* Declarations for user-level file locking routines.
*
* Copyright 1987 Regents of the University of California
* All rights reserved.
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that the above copyright
* notice appear in all copies. The University of California
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*
* $Header: /sprite/src/kernel/fsio/RCS/fsioLock.h,v 9.1 90/10/08 15:54:11 mendel Exp $ SPRITE (Berkeley)
*/
#ifndef _FSLOCK
#define _FSLOCK
/*
* There is a system call to lock a file. The lock state is kept in
* the I/O handle on the I/O server so that the lock has network-wide effect.
*/
typedef struct Fsio_LockState {
int flags; /* Bits defined below */
List_Links waitList; /* List of processes to wakeup when the
* file gets unlocked */
int numShared; /* Number of shared lock holders */
List_Links ownerList; /* List of processes responsible for locks */
} Fsio_LockState;
/*
* (The following lock bits are defined in user/fs.h)
* IOC_LOCK_EXCLUSIVE - only one process may hold an exclusive lock.
* IOC_LOCK_SHARED - many processes may hold shared locks as long as
* there are no exclusive locks held. Exclusive locks have to
* wait until all shared locks go away.
*/
/*
* flock() support
*/
extern void Fsio_LockInit _ARGS_((Fsio_LockState *lockPtr));
extern ReturnStatus Fsio_IocLock _ARGS_((Fsio_LockState *lockPtr,
Fs_IOCParam *ioctlPtr, Fs_FileID *streamIDPtr));
extern ReturnStatus Fsio_Lock _ARGS_((Fsio_LockState *lockPtr,
Ioc_LockArgs *argPtr, Fs_FileID *streamIDPtr));
extern ReturnStatus Fsio_Unlock _ARGS_((Fsio_LockState *lockPtr,
Ioc_LockArgs *argPtr, Fs_FileID *streamIDPtr));
extern void Fsio_LockClose _ARGS_((Fsio_LockState *lockPtr,
Fs_FileID *streamIDPtr));
extern void Fsio_LockClientKill _ARGS_((Fsio_LockState *lockPtr, int clientID));
/*
* Cache consistency routines.
*/
#endif _FSLOCK